Chore: Bake DOT into an Airflow worker image - #121
Open
Oluwajuwon-O wants to merge 2 commits into
Open
Conversation
Base the DOT Dockerfile on apache/airflow:2.2.4-python3.8, install dependencies at build time, and point airflow-worker at the custom image.
Oluwajuwon-O
marked this pull request as ready for review
August 6, 2026 13:54
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR addresses the Airflow worker integration issues described in the technical documentation
Manual Airflow Worker Setup
Previously, the DOT Dockerfile was a standalone Python image, and the Airflow compose stack utilized a discrete, standard Airflow image. To run DOT within Airflow, operators had to manually execute
cd /app/dot && ./install_dot.shinside the runningairflow-workercontainer. Every time the container was downed or recreated, all DOT requirements had to be manually reinstalled from scratch.Resolution
docker/dot/Dockerfileto strictly derive fromapache/airflow:2.2.4-python3.8, maintaining parity with the other Airflow components.USER rootto install OS-levelpostgresql-clientdependencies, then reverts toUSER airflowto executeinstall_dot.sh. The DOT Python packages are now installed during the image build process rather than at runtime.airflow-workerservice indocker-compose-with-airflow.ymlto directly build and use this newdot-airflow-worker:latestimage.install_dot.shandrequirements_dot.txtto pin compatible versions ofpip,setuptools, andwheelto prevent build failures in the Python 3.8 environment.This streamlines operational deployments. The environment is now immediately ready to execute DOT natively via a
BashOperatorwithout repetitive, manual setup steps.In the Technical Documentation, this is addressed in Section 12 .
Asana Task
Deployment Readiness*
Testing
Describe or check:
Deployment Notes
Describe or check:
Rollback Plan
Describe or check:
git revert)Reviewer Guidance / Questions*
Screenshots / Testing Evidence*
SOC 2 Change Management Checklist
./vendor/bin/pest)Provide justification if you are submitting a PR with any boxes checked other than the first.
Reminder for Reviewers: By approving this PR you are confirming that you have reviewed the code for correctness, security, and compliance with our engineering and SOC 2 standards. Do not approve PRs where SOC 2 checklist items are checked without documented justification.
*Optional